home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / include / sys / un.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-11  |  517 b   |  27 lines

  1. /*
  2.  * DESQview/X Socket Library. Copyright (c) 1992 Quarterdeck Office Systems.
  3.  */
  4.  
  5. /*
  6.  * Copyright (c) 1983 Regents of the University of California.
  7.  * All rights reserved.  The Berkeley software License Agreement
  8.  * specifies the terms and conditions for redistribution.
  9.  */
  10.  
  11. /*      @(#)un.h    */
  12.  
  13. /*
  14.  * Definitions UNIX/DESQview IPC domain.
  15.  */
  16.  
  17.  
  18. #ifndef __SYS_UN_H__
  19. #define __SYS_UN_H__
  20.  
  21. struct sockaddr_un {
  22.     short     sun_family;
  23.     char      sun_path[108];
  24. };
  25.  
  26. #endif /* __SYS_UN_H__ */
  27.